home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Auge 4000 / Auge 4000 #47 (1990-06-22)(Amiga User Gruppe Einzugsgebiet 4000).zip / Auge 4000 #47 (1990-06-22)(Amiga User Gruppe Einzugsgebiet 4000).adf / arp-pro1.3 / OLD_MANUAL / ReadLine < prev    next >
Text File  |  1990-06-22  |  1KB  |  67 lines

  1.  
  2.  
  3.  
  4.      ReadLine(31.0)      ARP Programmers Manual    ReadLine(31.0)
  5.  
  6.  
  7.  
  8.      NAME
  9.       ReadLine - Get a line    from current input.
  10.  
  11.      SYNOPSIS
  12.       Count    = ReadLine("Address")
  13.        d0              A0
  14.  
  15.      FUNCTION
  16.       This function    reads a    line of    up to MaxInputBuf characters
  17.       from stdin.  You must    have a buffer available    of this    size,
  18.       or you run the risk of overwriting innocent memory.
  19.       MaxInputBuf is defined in arpbase.[h|i].
  20.  
  21.       This function    does no    editing    or echoing of the command
  22.       line,    although it does guarantee the returned    string is null
  23.       terminated.
  24.  
  25.      INPUTS
  26.       Address - Pointer to a 256 byte buffer to store the input
  27.           string in.
  28.  
  29.      RESULT
  30.       Count    - The actual count of the characters returned.
  31.           Address will contain a null terminated string    of
  32.           Count    characters.
  33.  
  34.      BUGS
  35.       None known
  36.  
  37.      ADDITIONAL    NOTES:
  38.       For the convenience of assembly language programs, A0    is
  39.       guaranteed to    contain    the same value on exit as it did on
  40.       entry.
  41.  
  42.      SEE ALSO
  43.       GADS,    EscapeString.
  44.  
  45.      AUTHOR
  46.       SDB
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.      Page 1                         (printed 2/22/88)
  64.  
  65.  
  66.  
  67.